Markup languages provide a way to store text along with extra information about its structure and layout. Different markup languages have different purposes and different rules. HTML is a loose markup language that serves as an easy way for new and amateur web designers to get acquainted with the concepts of web design and quickly post content to the Internet. XHTML is a newer standard, a more evolved and stricter form of HTML. The X stands for extensible, implying the greater ability of XHTML to integrate with other applications and markup languages.
An overview of the differences between these two standards is as follows: unlike HTML, XHTML requires that all elements are properly nested, properly closed, and in lowercase. In addition, XHTML documents cannot have more than one root element (the <html> tag).
One could prepare themselves for tag/rules that change in XHTML by starting to write strict HTML. XHTML is not that much different from the HTML 4.01 standard. So, presetting codes up to the 4.01 standard is a very good way to start. In addition, writing HTML code in lowercase letters, and never skipping ending tags (like </p>) is also a great way to begin. After beginning it’s great to know that there are a lot of differences between XHTML and HTML. Some of the most Important Differences are XHTML elements must be properly nested, must always be closed, must be in lowercase, and last but not least must always have a one root element
Summary
Markup languages provide a way to store text along with extra information about its structure and layout. Different markup languages have different purposes and different rules. HTML is a loose markup language that serves as an easy way for new and amateur web designers to get acquainted with the concepts of web design and quickly post content to the Internet. XHTML is a newer standard, a more evolved and stricter form of HTML. The X stands for extensible, implying the greater ability of XHTML to integrate with other applications and markup languages.An overview of the differences between these two standards is as follows: unlike HTML, XHTML requires that all elements are properly nested, properly closed, and in lowercase. In addition, XHTML documents cannot have more than one root element (the <html> tag).
One could prepare themselves for tag/rules that change in XHTML by starting to write strict HTML. XHTML is not that much different from the HTML 4.01 standard. So, presetting codes up to the 4.01 standard is a very good way to start. In addition, writing HTML code in lowercase letters, and never skipping ending tags (like </p>) is also a great way to begin. After beginning it’s great to know that there are a lot of differences between XHTML and HTML. Some of the most Important Differences are XHTML elements must be properly nested, must always be closed, must be in lowercase, and last but not least must always have a one root element
Examples of Common Tags that Change
Examples of Code Snippets that Change
HTML
XHTML
1
<li>A
<li>Unordered
<li>List</li>
</ul>
<li>A</li>
<li>Unordered</li>
<li>List</li>
</ul>
2
3
4
5
Web Resources
Give 10 examples of common tags that change
Give 5 examples of code snippets (not tags) that change